home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 3 / Info_Mac_1994-01.iso / Development / General / GCC 1.37.1r15 / Sources / global-alloc.c < prev    next >
Text File  |  1990-09-04  |  34KB  |  1,128 lines

  1. /* Allocate registers for pseudo-registers that span basic blocks.
  2.    Copyright (C) 1987, 1988 Free Software Foundation, Inc.
  3.    Copyright (C) 1989, 1990 Apple Computer, Inc.
  4.  
  5. This file is part of GNU CC.
  6.  
  7. GNU CC is free software; you can redistribute it and/or modify
  8. it under the terms of the GNU General Public License as published by
  9. the Free Software Foundation; either version 1, or (at your option)
  10. any later version.
  11.  
  12. GNU CC is distributed in the hope that it will be useful,
  13. but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  15. GNU General Public License for more details.
  16.  
  17. You should have received a copy of the GNU General Public License
  18. along with GNU CC; see the file COPYING.  If not, write to
  19. the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
  20.  
  21.  
  22. #include <stdio.h>
  23. #include "config.h"
  24. #include "rtl.h"
  25. #include "flags.h"
  26. #include "basic-block.h"
  27. #include "hard-reg-set.h"
  28. #include "regs.h"
  29. #include "insn-config.h"
  30.  
  31. #ifdef MPW
  32. #include <CursorCtl.h>
  33. #endif
  34.  
  35. /* This pass of the compiler performs global register allocation.
  36.    It assigns hard register numbers to all the pseudo registers
  37.    that were not handled in local_alloc.  Assignments are recorded
  38.    in the vector reg_renumber, not by changing the rtl code.
  39.    (Such changes are made by final).  The entry point is
  40.    the function global_alloc.
  41.  
  42.    After allocation is complete, the reload pass is run as a subroutine
  43.    of this pass, so that when a pseudo reg loses its hard reg due to
  44.    spilling it is possible to make a second attempt to find a hard
  45.    reg for it.  The reload pass is independent in other respects
  46.    and it is run even when stupid register allocation is in use.
  47.  
  48.    1. count the pseudo-registers still needing allocation
  49.    and assign allocation-numbers (allocnos) to them.
  50.    Set up tables reg_allocno and allocno_reg to map 
  51.    reg numbers to allocnos and vice versa.
  52.    max_allocno gets the number of allocnos in use.
  53.  
  54.    2. Allocate a max_allocno by max_allocno conflict bit matrix and clear it.
  55.    Allocate a max_allocno by FIRST_PSEUDO_REGISTER conflict matrix
  56.    for conflicts between allocnos and explicit hard register use
  57.    (which includes use of pseudo-registers allocated by local_alloc).
  58.  
  59.    3. for each basic block
  60.     walk forward through the block, recording which
  61.     unallocated registers and which hardware registers are live.
  62.     Build the conflict matrix between the unallocated registers
  63.     and another of unallocated registers versus hardware registers.
  64.     Also record the preferred hardware registers
  65.     for each unallocated one.
  66.  
  67.    4. Sort a table of the allocnos into order of
  68.    desirability of the variables.
  69.  
  70.    5. Allocate the variables in that order; each if possible into
  71.    a preferred register, else into another register.  */
  72.  
  73. /* Number of pseudo-registers still requiring allocation
  74.    (not allocated by local_allocate).  */
  75.  
  76. static int max_allocno;
  77.  
  78. /* Indexed by (pseudo) reg number, gives the allocno, or -1
  79.    for pseudo registers already allocated by local_allocate.  */
  80.  
  81. static int *reg_allocno;
  82.  
  83. /* Indexed by allocno, gives the reg number.  */
  84.  
  85. static int *allocno_reg;
  86.  
  87. /* A vector of the integers from 0 to max_allocno-1,
  88.    sorted in the order of first-to-be-allocated first.  */
  89.  
  90. static int *allocno_order;
  91.  
  92. /* Indexed by an allocno, gives the number of consecutive
  93.    hard registers needed by that pseudo reg.  */
  94.  
  95. static int *allocno_size;
  96.  
  97. /* max_allocno by max_allocno array of bits,
  98.    recording whether two allocno's conflict (can't go in the same
  99.    hardware register).
  100.  
  101.    `conflicts' is not symmetric; a conflict between allocno's i and j
  102.    is recorded either in element i,j or in element j,i.  */
  103.  
  104. static int *conflicts;
  105.  
  106. /* Number of ints require to hold max_allocno bits.
  107.    This is the length of a row in `conflicts'.  */
  108.  
  109. static int allocno_row_words;
  110.  
  111. /* Two macros to test or store 1 in an element of `conflicts'.  */
  112.  
  113. #define CONFLICTP(I, J) \
  114.  (conflicts[(I) * allocno_row_words + (J) / INT_BITS]    \
  115.   & (1 << ((J) % INT_BITS)))
  116.  
  117. #define SET_CONFLICT(I, J) \
  118.  (conflicts[(I) * allocno_row_words + (J) / INT_BITS]    \
  119.   |= (1 << ((J) % INT_BITS)))
  120.  
  121. /* Set of hard regs currently live (during scan of all insns).  */
  122.  
  123. static HARD_REG_SET hard_regs_live;
  124.  
  125. /* Indexed by N, set of hard regs conflicting with allocno N.  */
  126.  
  127. static HARD_REG_SET *hard_reg_conflicts;
  128.  
  129. /* Indexed by N, set of hard regs preferred by allocno N.
  130.    This is used to make allocnos go into regs that are copied to or from them,
  131.    when possible, to reduce register shuffling.  */
  132.  
  133. static HARD_REG_SET *hard_reg_preferences;
  134.  
  135. /* Set of registers that some allocno has a preference for.  */
  136.  
  137. static HARD_REG_SET regs_someone_prefers;
  138.  
  139. /* Set of registers that global-alloc isn't supposed to use.  */
  140.  
  141. static HARD_REG_SET no_global_alloc_regs;
  142.  
  143. /* Test a bit in TABLE, a vector of HARD_REG_SETs,
  144.    for vector element I, and hard register number J.  */
  145.  
  146. #define REGBITP(TABLE, I, J)     TEST_HARD_REG_BIT (TABLE[I], J)
  147.  
  148. /* Set to 1 a bit in a vector of HARD_REG_SETs.  Works like REGBITP.  */
  149.  
  150. #define SET_REGBIT(TABLE, I, J)  SET_HARD_REG_BIT (TABLE[I], J)
  151.  
  152. /* Bit mask for allocnos live at current point in the scan.  */
  153.  
  154. static int *allocnos_live;
  155.  
  156. #define INT_BITS HOST_BITS_PER_INT
  157.  
  158. /* Test, set or clear bit number I in allocnos_live,
  159.    a bit vector indexed by allocno.  */
  160.  
  161. #define ALLOCNO_LIVE_P(I) \
  162.   (allocnos_live[(I) / INT_BITS] & (1 << ((I) % INT_BITS)))
  163.  
  164. #define SET_ALLOCNO_LIVE(I) \
  165.   (allocnos_live[(I) / INT_BITS] |= (1 << ((I) % INT_BITS)))
  166.  
  167. #define CLEAR_ALLOCNO_LIVE(I) \
  168.   (allocnos_live[(I) / INT_BITS] &= ~(1 << ((I) % INT_BITS)))
  169.  
  170. /* Record all regs that are set in any one insn.
  171.    Communication from mark_reg_{store,clobber} and global_conflicts.  */
  172.  
  173. static rtx *regs_set;
  174. static int n_regs_set;
  175.  
  176. static int allocno_compare ();
  177. static void mark_reg_store ();
  178. static void mark_reg_clobber ();
  179. static void mark_reg_live_nc ();
  180. static void mark_reg_death ();
  181. static void dump_conflicts ();
  182. static void find_reg ();
  183. static void global_conflicts ();
  184. static void record_conflicts ();
  185. static void set_preference ();
  186.  
  187. /* Perform allocation of pseudo-registers not allocated by local_alloc.
  188.    FILE is a file to output debugging information on,
  189.    or zero if such output is not desired.  */
  190.  
  191. void
  192. global_alloc (file)
  193.      FILE *file;
  194. {
  195.   register int i;
  196.  
  197.   max_allocno = 0;
  198.  
  199.   CLEAR_HARD_REG_SET (regs_someone_prefers);
  200.  
  201.   /* A machine may have certain hard registers that
  202.      are safe to use only within a basic block.  */
  203.  
  204.   CLEAR_HARD_REG_SET (no_global_alloc_regs);
  205. #ifdef OVERLAPPING_REGNO_P
  206.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  207.     if (OVERLAPPING_REGNO_P (i))
  208.       SET_HARD_REG_BIT (no_global_alloc_regs, i);
  209. #endif
  210.  
  211.   /* Establish mappings from register number to allocation number
  212.      and vice versa.  In the process, count the allocnos.  */
  213.  
  214.   reg_allocno = (int *) alloca (max_regno * sizeof (int));
  215.  
  216.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  217.     reg_allocno[i] = -1;
  218.  
  219.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  220.     /* Note that reg_live_length[i] < 0 indicates a "constant" reg
  221.        that we are supposed to refrain from putting in a hard reg.
  222.        -2 means do make an allocno but don't allocate it.  */
  223.     if (reg_n_refs[i] != 0 && reg_renumber[i] < 0 && reg_live_length[i] != -1)
  224.       {
  225.     reg_allocno[i] = max_allocno++;
  226.     if (reg_live_length[i] == 0)
  227.       abort ();
  228.       }
  229.     else
  230.       reg_allocno[i] = -1;
  231.  
  232.   allocno_reg = (int *) alloca (max_allocno * sizeof (int));
  233.   allocno_size = (int *) alloca (max_allocno * sizeof (int));
  234.   bzero (allocno_size, max_allocno * sizeof (int));
  235.  
  236.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  237.     {
  238.  
  239. #ifdef MPW
  240.     SpinCursor(1);
  241. #endif
  242.  
  243.     if (reg_allocno[i] >= 0)
  244.       {
  245.     allocno_reg[reg_allocno[i]] = i;
  246.     allocno_size[reg_allocno[i]] = PSEUDO_REGNO_SIZE (i);
  247.       }
  248.     }
  249.  
  250.   /* Allocate the space for the conflict tables.  */
  251.  
  252.   hard_reg_conflicts = (HARD_REG_SET *)
  253.     alloca (max_allocno * sizeof (HARD_REG_SET));
  254.   bzero (hard_reg_conflicts, max_allocno * sizeof (HARD_REG_SET));
  255.  
  256.   hard_reg_preferences = (HARD_REG_SET *)
  257.     alloca (max_allocno * sizeof (HARD_REG_SET));
  258.   bzero (hard_reg_preferences, max_allocno * sizeof (HARD_REG_SET));
  259.  
  260.   allocno_row_words = (max_allocno + INT_BITS - 1) / INT_BITS;
  261.  
  262.   conflicts = (int *)
  263.     alloca (max_allocno * allocno_row_words * sizeof (int));
  264.   bzero (conflicts, max_allocno * allocno_row_words * sizeof (int));
  265.  
  266.   allocnos_live = (int *) alloca (allocno_row_words * sizeof (int));
  267.  
  268.   /* If there is work to be done (at least one reg to allocate),
  269.      perform global conflict analysis and allocate the regs.  */
  270.  
  271.   if (max_allocno > 0)
  272.     {
  273.       /* Scan all the insns and compute the conflicts among allocnos
  274.      and between allocnos and hard regs.  */
  275.  
  276.       global_conflicts ();
  277.  
  278.       /* Determine the order to allocate the remaining pseudo registers.  */
  279.  
  280.       allocno_order = (int *) alloca (max_allocno * sizeof (int));
  281.       for (i = 0; i < max_allocno; i++)
  282.     allocno_order[i] = i;
  283.  
  284.       /* Default the size to 1, since allocno_compare uses it to divide by.  */
  285.  
  286.       for (i = 0; i < max_allocno; i++)
  287.     if (allocno_size[i] == 0)
  288.       allocno_size[i] = 1;
  289.  
  290.       qsort (allocno_order, max_allocno, sizeof (int), allocno_compare);
  291.  
  292.       if (file)
  293.     dump_conflicts (file);
  294.  
  295.       /* Try allocating them, one by one, in that order,
  296.      except for parameters marked with reg_live_length[regno] == -2.  */
  297.  
  298.       for (i = 0; i < max_allocno; i++)
  299. #ifdef MPW_C
  300.     if (reg_live_length[allocno_reg[*(allocno_order+i)]] >= 0)
  301. #else
  302.     if (reg_live_length[allocno_reg[allocno_order[i]]] >= 0)
  303. #endif /* MPW_C */
  304.       {
  305.  
  306. #ifdef MPW
  307.         SpinCursor(1);
  308. #endif
  309.  
  310.         /* If we have more than one register class,
  311.            first try allocating in the class that is cheapest
  312.            for this pseudo-reg.  If that fails, try any reg.  */
  313.         if (N_REG_CLASSES > 1)
  314.           {
  315.         find_reg (allocno_order[i], 0, 0, 0,
  316.               hard_reg_preferences[allocno_order[i]]);
  317. #ifdef MPW_C
  318.         if (reg_renumber[allocno_reg[*(allocno_order+i)]] >= 0)
  319. #else
  320.         if (reg_renumber[allocno_reg[allocno_order[i]]] >= 0)
  321. #endif /* MPW_C */
  322.           continue;
  323.           }
  324.         if (!reg_preferred_or_nothing (allocno_reg[allocno_order[i]]))
  325.           find_reg (allocno_order[i], 0, 1, 0,
  326.             hard_reg_preferences[allocno_order[i]]);
  327.       }
  328.     }
  329.  
  330.   /* Do the reloads now while the allocno data still exist, so that we can
  331.      try to assign new hard regs to any pseudo regs that are spilled.  */
  332.  
  333.   if (n_basic_blocks > 0)
  334.     reload (basic_block_head[0], 1, file);
  335. }
  336.  
  337. /* Sort predicate for ordering the allocnos.
  338.    Returns -1 (1) if *v1 should be allocated before (after) *v2.  */
  339.  
  340. static int
  341. allocno_compare (v1, v2)
  342.      int *v1, *v2;
  343. {
  344.   register int r1 = allocno_reg[*v1];
  345.   register int r2 = allocno_reg[*v2];
  346.   /* Note that the quotient will never be bigger than
  347.      the value of floor_log2 times the maximum number of
  348.      times a register can occur in one insn (surely less than 100).
  349.      Multiplying this by 10000 can't overflow.  */
  350.   register int pri1
  351.     = (((double) (floor_log2 (reg_n_refs[r1]) * reg_n_refs[r1])
  352.     / (reg_live_length[r1] * allocno_size[*v1]))
  353.        * 10000);
  354.   register int pri2
  355.     = (((double) (floor_log2 (reg_n_refs[r2]) * reg_n_refs[r2])
  356.     / (reg_live_length[r2] * allocno_size[*v2]))
  357.        * 10000);
  358.   if (pri2 - pri1)
  359.     return pri2 - pri1;
  360.  
  361.   /* If regs are equally good, sort by allocno,
  362.      so that the results of qsort leave nothing to chance.  */
  363.   return *v1 - *v2;
  364. }
  365.  
  366. /* Scan the rtl code and record all conflicts in the conflict matrices.  */
  367.  
  368. static void
  369. global_conflicts ()
  370. {
  371.   register int b, i;
  372.   register rtx insn;
  373.   short *block_start_allocnos;
  374.  
  375.   /* Make a vector that mark_reg_{store,clobber} will store in.  */
  376.   regs_set = (rtx *) alloca (max_parallel * sizeof (rtx) * 2);
  377.  
  378.   block_start_allocnos = (short *) alloca (max_allocno * sizeof (short));
  379.  
  380.   for (b = 0; b < n_basic_blocks; b++)
  381.     {
  382.       bzero (allocnos_live, allocno_row_words * sizeof (int));
  383.  
  384.       /* Initialize table of registers currently live
  385.      to the state at the beginning of this basic block.
  386.      This also marks the conflicts among them.
  387.  
  388.      For pseudo-regs, there is only one bit for each one
  389.      no matter how many hard regs it occupies.
  390.      This is ok; we know the size from PSEUDO_REGNO_SIZE.
  391.      For explicit hard regs, we cannot know the size that way
  392.      since one hard reg can be used with various sizes.
  393.      Therefore, we must require that all the hard regs
  394.      implicitly live as part of a multi-word hard reg
  395.      are explicitly marked in basic_block_live_at_start.  */
  396.  
  397.       {
  398.     register int offset, bit;
  399.     register regset old = basic_block_live_at_start[b];
  400.     int ax = 0;
  401.  
  402. #ifdef HARD_REG_SET
  403.     hard_regs_live = old[0];
  404. #else
  405.     COPY_HARD_REG_SET (hard_regs_live, old);
  406. #endif
  407.     for (offset = 0, i = 0; offset < regset_size; offset++)
  408.       {
  409.       if (old[offset] == 0)
  410.         i += HOST_BITS_PER_INT;
  411.       else
  412.         for (bit = 1; bit; bit <<= 1, i++)
  413.           {
  414.         if (i >= max_regno)
  415.           break;
  416.         if (old[offset] & bit)
  417.           {
  418.             register int a = reg_allocno[i];
  419.             if (a >= 0)
  420.               {
  421.             SET_ALLOCNO_LIVE (a);
  422.             block_start_allocnos[ax++] = a;
  423.               }
  424.             else if ((a = reg_renumber[i]) >= 0)
  425.               mark_reg_live_nc (a, PSEUDO_REGNO_MODE (i));
  426.           }
  427.           }
  428.           }
  429.  
  430.     /* Record that each allocno now live conflicts with each other
  431.        allocno now live, and with each hard reg now live.  */
  432.  
  433.     record_conflicts (block_start_allocnos, ax);
  434.       }
  435.  
  436.       insn = basic_block_head[b];
  437.  
  438.       /* Scan the code of this basic block, noting which allocnos
  439.      and hard regs are born or die.  When one is born,
  440.      record a conflict with all others currently live.  */
  441.  
  442.       while (1)
  443.     {
  444.       register RTX_CODE code = GET_CODE (insn);
  445.       register rtx link;
  446.  
  447.  
  448. #ifdef MPW
  449.       SpinCursor(1);
  450. #endif
  451.  
  452.       /* Make regs_set an empty set.  */
  453.  
  454.       n_regs_set = 0;
  455.  
  456.       if (code == INSN || code == CALL_INSN || code == JUMP_INSN)
  457.         {
  458.           /* Mark any registers clobbered by INSN as live,
  459.          so they conflict with the inputs.  */
  460.  
  461.           note_stores (PATTERN (insn), mark_reg_clobber);
  462.  
  463.           /* Mark any registers dead after INSN as dead now.  */
  464.  
  465.           for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
  466.         if (REG_NOTE_KIND (link) == REG_DEAD)
  467.           mark_reg_death (XEXP (link, 0));
  468.  
  469.           /* Mark any registers set in INSN as live,
  470.          and mark them as conflicting with all other live regs.
  471.          Clobbers are processed again, so they conflict with
  472.          the registers that are set.  */
  473.  
  474.           note_stores (PATTERN (insn), mark_reg_store);
  475.  
  476.           /* Mark any registers both set and dead after INSN as dead.
  477.          This is not redundant!
  478.          A register may be set and killed in the same insn.
  479.          It is necessary to mark them as live, above, to get
  480.          the right conflicts within the insn.  */
  481.  
  482.           while (n_regs_set > 0)
  483.         if (find_regno_note (insn, REG_DEAD, REGNO (regs_set[--n_regs_set])))
  484.           mark_reg_death (regs_set[n_regs_set]);
  485.         
  486.           /* Likewise for regs set by incrementation.  */
  487.  
  488.           for (link = REG_NOTES (insn); link; link = XEXP (link, 1))
  489.         if (REG_NOTE_KIND (link) == REG_INC
  490.             && find_regno_note (insn, REG_DEAD, REGNO (XEXP (link, 0))))
  491.           mark_reg_death (XEXP (link, 0));
  492.         }
  493.  
  494.       if (insn == basic_block_end[b])
  495.         break;
  496.       insn = NEXT_INSN (insn);
  497.     }
  498.     }
  499. }
  500.  
  501. /* Assign a hard register to ALLOCNO; look for one that is the beginning
  502.    of a long enough stretch of hard regs none of which conflicts with ALLOCNO.
  503.    The registers marked in PREFREGS are tried first.
  504.  
  505.    If ALL_REGS_P is zero, consider only the preferred class of ALLOCNO's reg.
  506.    Otherwise ignore that preferred class.
  507.  
  508.    If ACCEPT_CALL_CLOBBERED is nonzero, accept a call-clobbered hard reg that
  509.    will have to be saved and restored at calls.
  510.  
  511.    If we find one, record it in reg_renumber.
  512.    If not, do nothing.  */
  513.  
  514. static void
  515. find_reg (allocno, losers, all_regs_p, accept_call_clobbered, prefregs)
  516.      int allocno;
  517.      register short *losers;
  518.      int all_regs_p;
  519.      int accept_call_clobbered;
  520.      HARD_REG_SET prefregs;
  521. {
  522.   register int i, prefreg, pass;
  523. #ifdef HARD_REG_SET
  524.   register        /* Declare it register if it's a scalar.  */
  525. #endif
  526.     HARD_REG_SET used;
  527.  
  528.   enum reg_class class 
  529.     = all_regs_p ? GENERAL_REGS : reg_preferred_class (allocno_reg[allocno]);
  530.   enum machine_mode mode = PSEUDO_REGNO_MODE (allocno_reg[allocno]);
  531.  
  532.   if (accept_call_clobbered)
  533.     COPY_HARD_REG_SET (used, call_fixed_reg_set);
  534.   else if (reg_n_calls_crossed[allocno_reg[allocno]] == 0)
  535.     COPY_HARD_REG_SET (used, fixed_reg_set);
  536.   else
  537.     COPY_HARD_REG_SET (used, call_used_reg_set);
  538.  
  539.   /* Some registers should not be allocated in global-alloc.  */
  540.   IOR_HARD_REG_SET (used, no_global_alloc_regs);
  541.  
  542.   IOR_COMPL_HARD_REG_SET (used, reg_class_contents[(int) class]);
  543.   IOR_HARD_REG_SET (used, hard_reg_conflicts[allocno]);
  544.   if (frame_pointer_needed)
  545.     SET_HARD_REG_BIT (used, FRAME_POINTER_REGNUM);
  546.  
  547.   AND_COMPL_HARD_REG_SET (prefregs, used);
  548.  
  549.   /* Try to find a register from the preferred set first. */
  550.  
  551.   i = -1;
  552.   for (prefreg = 0; prefreg < FIRST_PSEUDO_REGISTER; prefreg++)
  553.     if (TEST_HARD_REG_BIT (prefregs, prefreg)
  554.     && (losers == 0 || losers[prefreg] < 0)
  555.     && HARD_REGNO_MODE_OK (prefreg, mode))
  556.       {
  557.     register int j;
  558.     register int lim = prefreg + HARD_REGNO_NREGS (prefreg, mode);
  559.     for (j = prefreg + 1;
  560.          (j < lim
  561.           && ! TEST_HARD_REG_BIT (used, j)
  562.           && (losers == 0 || losers[j] < 0));
  563.          j++);
  564.     if (j == lim)
  565.       {
  566.         i = prefreg;
  567.         break;
  568.       }
  569.       }
  570.  
  571.  
  572. #ifdef MPW
  573.   SpinCursor(1);
  574. #endif
  575.  
  576. #if 0
  577.   /* Otherwise try each hard reg to see if it fits.  Do this in two passes.
  578.      In the first pass, skip registers that are prefered by some pseudo to
  579.      give it a better chance of getting one of those registers.  Only if
  580.      we can't get a register when excluding those do we take one of them.  */
  581.  
  582.   /* This is turned off because it makes worse allocation on the 68020.  */
  583.   for (pass = 0; pass <= 1 && i < 0; pass++)
  584. #endif
  585.   pass = 1;
  586.     for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  587.       {
  588. #ifdef REG_ALLOC_ORDER
  589.     int regno = reg_alloc_order[i];
  590. #else
  591.     int regno = i;
  592. #endif
  593.     if (! TEST_HARD_REG_BIT (used, regno)
  594.         && (losers == 0 || losers[regno] < 0)
  595.         && (pass == 1 || ! TEST_HARD_REG_BIT (regs_someone_prefers, regno))
  596.         && HARD_REGNO_MODE_OK (regno, mode))
  597.       {
  598.         register int j;
  599.         register int lim = regno + HARD_REGNO_NREGS (regno, mode);
  600.         for (j = regno + 1;
  601.          (j < lim
  602.           && ! TEST_HARD_REG_BIT (used, j)
  603.           && (losers == 0 || losers[j] < 0));
  604.          j++);
  605.         if (j == lim)
  606.           {
  607.         i = regno;
  608.         break;
  609.           }
  610. #ifndef REG_ALLOC_ORDER
  611.         i = j;            /* Skip starting points we know will lose */
  612. #endif
  613.       }
  614.       }
  615.  
  616.   /* Did we find a register?  */
  617.  
  618.   if (i < FIRST_PSEUDO_REGISTER)
  619.     {
  620.       register int lim, j;
  621.       HARD_REG_SET this_reg;
  622.  
  623.       /* Yes.  Record it as the hard register of this pseudo-reg.  */
  624.       reg_renumber[allocno_reg[allocno]] = i;
  625.       /* For each other pseudo-reg conflicting with this one,
  626.      mark it as conflicting with the hard regs this one occupies.  */
  627.       CLEAR_HARD_REG_SET (this_reg);
  628.       lim = i + HARD_REGNO_NREGS (i, mode);
  629.       for (j = i; j < lim; j++)
  630.     SET_HARD_REG_BIT (this_reg, j);
  631.       lim = allocno;
  632.       for (j = 0; j < max_allocno; j++)
  633.     if (CONFLICTP (lim, j) || CONFLICTP (j, lim))
  634.       {
  635.         IOR_HARD_REG_SET (hard_reg_conflicts[j], this_reg);
  636.       }
  637.     }
  638.   else if (flag_caller_saves)
  639.     {
  640.       /* Did not find a register.  If it would be profitable to
  641.      allocate a call-clobbered register and save and restore it
  642.      around calls, do that.  */
  643.       if (! accept_call_clobbered
  644.       && reg_n_calls_crossed[allocno_reg[allocno]] != 0
  645.       && CALLER_SAVE_PROFITABLE (reg_n_refs[allocno_reg[allocno]],
  646.                      reg_n_calls_crossed[allocno_reg[allocno]]))
  647.     {
  648.       find_reg (allocno, losers, all_regs_p, 1, prefregs);
  649.       if (reg_renumber[allocno_reg[allocno]] >= 0)
  650.         caller_save_needed = 1;
  651.     }
  652.     }
  653. }
  654.  
  655. /* Called from `reload' to look for a hard reg to put pseudo reg REGNO in.
  656.    Perhaps it had previously seemed not worth a hard reg,
  657.    or perhaps its old hard reg has been commandeered for reloads.
  658.    FORBIDDEN_REGS is a vector that indicates certain hard regs
  659.    that may not be used, even if they do not appear to be allocated.
  660.    A nonnegative element means the corresponding hard reg is forbidden.
  661.    If FORBIDDEN_REGS is zero, no regs are forbidden.  */
  662.  
  663. void
  664. retry_global_alloc (regno, forbidden_regs)
  665.      int regno;
  666.      short *forbidden_regs;
  667. {
  668.   int allocno = reg_allocno[regno];
  669.   if (allocno >= 0)
  670.     {
  671.       /* If we have more than one register class,
  672.      first try allocating in the class that is cheapest
  673.      for this pseudo-reg.  If that fails, try any reg.  */
  674.       if (N_REG_CLASSES > 1)
  675.     find_reg (allocno, forbidden_regs, 0, 0,
  676.           hard_reg_preferences[allocno]);
  677.       if (reg_renumber[regno] < 0
  678.       && !reg_preferred_or_nothing (regno))
  679.     find_reg (allocno, forbidden_regs, 1, 0,
  680.           hard_reg_preferences[allocno]);
  681.     }
  682. }
  683.  
  684. /* Called from reload pass to see if current function's pseudo regs
  685.    require a frame pointer to be allocated and set up.
  686.  
  687.    Return 1 if so, 0 otherwise.
  688.    We may alter the hard-reg allocation of the pseudo regs
  689.    in order to make the frame pointer unnecessary.
  690.    However, if the value is 1, nothing has been altered.
  691.  
  692.    Args grant access to some tables used in reload1.c.
  693.    See there for info on them.  */
  694.  
  695. int
  696. check_frame_pointer_required (reg_equiv_constant, reg_equiv_mem, reg_equiv_address)
  697.      rtx *reg_equiv_constant, *reg_equiv_mem, *reg_equiv_address;
  698. {
  699.   register int i;
  700.   HARD_REG_SET *old_hard_reg_conflicts;
  701.   short *old_reg_renumber;
  702.   char old_regs_ever_live[FIRST_PSEUDO_REGISTER];
  703.  
  704.   /* If any pseudo reg has no hard reg and no equivalent,
  705.      we must have a frame pointer.  */
  706.  
  707.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  708.     if (reg_renumber[i] < 0 && reg_n_refs[i] > 0
  709.         && reg_equiv_mem[i] == 0 && reg_equiv_constant[i] == 0
  710.     && reg_equiv_address[i] == 0)
  711.       return 1;
  712.  
  713.   /* If we might not need a frame pointer,
  714.      try finding a hard reg for any pseudo that has a memory equivalent.
  715.      That is because the memory equivalent probably refers to a frame
  716.      pointer.  */
  717.  
  718.   old_reg_renumber = (short *) alloca (max_regno * sizeof (short));
  719.   old_hard_reg_conflicts = (HARD_REG_SET *)
  720.     alloca (max_allocno * sizeof (HARD_REG_SET));
  721.  
  722.   bcopy (reg_renumber, old_reg_renumber, max_regno * sizeof (short));
  723.   bcopy (hard_reg_conflicts, old_hard_reg_conflicts,
  724.      max_allocno * sizeof (HARD_REG_SET));
  725.   bcopy (regs_ever_live, old_regs_ever_live, sizeof regs_ever_live);
  726.  
  727.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  728.     if (reg_renumber[i] < 0
  729.     && ((reg_equiv_mem[i]
  730.          && reg_mentioned_p (frame_pointer_rtx, reg_equiv_mem[i]))
  731.         || (reg_equiv_address[i]
  732.         && reg_mentioned_p (frame_pointer_rtx, reg_equiv_address[i]))))
  733.       {
  734.     retry_global_alloc (i, 0);
  735.     /* If we can't find a hard reg for ALL of them,
  736.        or if a previously unneeded hard reg is used that requires saving,
  737.        we fail: set all those pseudos back as they were.  */
  738.     if (reg_renumber[i] < 0
  739.         || (! old_regs_ever_live[reg_renumber[i]]
  740.         && ! call_used_regs[reg_renumber[i]]))
  741.       {
  742.         bcopy (old_reg_renumber, reg_renumber,
  743.            max_regno * sizeof (short));
  744.         bcopy (old_hard_reg_conflicts, hard_reg_conflicts,
  745.            max_allocno * sizeof (HARD_REG_SET));
  746.         bcopy (old_regs_ever_live, regs_ever_live, sizeof regs_ever_live);
  747.         return 1;
  748.       }
  749.     mark_home_live (i);
  750.       }
  751.  
  752.   return 0;
  753. }
  754.  
  755. /* Record a conflict between register REGNO
  756.    and everything currently live.
  757.    REGNO must not be a pseudo reg that was allocated
  758.    by local_alloc; such numbers must be translated through
  759.    reg_renumber before calling here.  */
  760.  
  761. static void
  762. record_one_conflict (regno)
  763.      int regno;
  764. {
  765.   register int j;
  766.  
  767.   if (regno < FIRST_PSEUDO_REGISTER)
  768.     /* When a hard register becomes live,
  769.        record conflicts with live pseudo regs.  */
  770.     for (j = 0; j < max_allocno; j++)
  771.       {
  772.     if (ALLOCNO_LIVE_P (j))
  773.       SET_HARD_REG_BIT (hard_reg_conflicts[j], regno);
  774.       }
  775.   else
  776.     /* When a pseudo-register becomes live,
  777.        record conflicts first with hard regs,
  778.        then with other pseudo regs.  */
  779.     {
  780.       register int ialloc = reg_allocno[regno];
  781.       register int ialloc_prod = ialloc * allocno_row_words;
  782.       IOR_HARD_REG_SET (hard_reg_conflicts[ialloc], hard_regs_live);
  783.       for (j = allocno_row_words - 1; j >= 0; j--)
  784.     conflicts[ialloc_prod + j] |= allocnos_live[j];
  785.     }
  786. }
  787.  
  788. /* Record all allocnos currently live as conflicting
  789.    with each other and with all hard regs currently live.
  790.    ALLOCNO_VEC is a vector of LEN allocnos, all allocnos that
  791.    are currently live.  Their bits are also flagged in allocnos_live.  */
  792.  
  793. static void
  794. record_conflicts (allocno_vec, len)
  795.      register short *allocno_vec;
  796.      register int len;
  797. {
  798.   register int allocno;
  799.   register int j;
  800.   register int ialloc_prod;
  801.  
  802.   while (--len >= 0)
  803.     {
  804.       allocno = allocno_vec[len];
  805.       ialloc_prod = allocno * allocno_row_words;
  806.       IOR_HARD_REG_SET (hard_reg_conflicts[allocno], hard_regs_live);
  807.       for (j = allocno_row_words - 1; j >= 0; j--)
  808.     conflicts[ialloc_prod + j] |= allocnos_live[j];
  809.     }
  810. }
  811.  
  812. /* Handle the case where REG is set by the insn being scanned,
  813.    during the forward scan to accumulate conflicts.
  814.    Store a 1 in regs_live or allocnos_live for this register, record how many
  815.    consecutive hardware registers it actually needs,
  816.    and record a conflict with all other registers already live.
  817.  
  818.    Note that even if REG does not remain alive after this insn,
  819.    we must mark it here as live, to ensure a conflict between
  820.    REG and any other regs set in this insn that really do live.
  821.    This is because those other regs could be considered after this.
  822.  
  823.    REG might actually be something other than a register;
  824.    if so, we do nothing.
  825.  
  826.    CLOBBERs are processed here by calling mark_reg_clobber.  */ 
  827.  
  828. static void
  829. mark_reg_store (orig_reg, setter)
  830.      rtx orig_reg, setter;
  831. {
  832.   register int regno;
  833.   register rtx reg = orig_reg;
  834.  
  835.   /* WORD is which word of a multi-register group is being stored.
  836.      For the case where the store is actually into a SUBREG of REG.
  837.      Except we don't use it; I believe the entire REG needs to be
  838.      made live.  */
  839.   int word = 0;
  840.  
  841.   if (GET_CODE (reg) == SUBREG)
  842.     {
  843.       word = SUBREG_WORD (reg);
  844.       reg = SUBREG_REG (reg);
  845.     }
  846.  
  847.   if (GET_CODE (reg) != REG)
  848.     return;
  849.  
  850.   if (GET_CODE (setter) != SET)
  851.     {
  852.       /* A clobber of a register should be processed here too.  */
  853.       mark_reg_clobber (orig_reg, setter);
  854.       return;
  855.     }
  856.  
  857.   regs_set[n_regs_set++] = reg;
  858.  
  859.   set_preference (reg, SET_SRC (setter));
  860.  
  861.   regno = REGNO (reg);
  862.  
  863.   if (reg_renumber[regno] >= 0)
  864.     regno = reg_renumber[regno] /* + word */;
  865.  
  866.   /* Either this is one of the max_allocno pseudo regs not allocated,
  867.      or it is or has a hardware reg.  First handle the pseudo-regs.  */
  868.   if (regno >= FIRST_PSEUDO_REGISTER)
  869.     {
  870.       if (reg_allocno[regno] >= 0)
  871.     {
  872.       SET_ALLOCNO_LIVE (reg_allocno[regno]);
  873.       record_one_conflict (regno);
  874.     }
  875.     }
  876.   /* Handle hardware regs (and pseudos allocated to hard regs).  */
  877.   else if (! fixed_regs[regno])
  878.     {
  879.       register int last = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg));
  880.       while (regno < last)
  881.     {
  882.       record_one_conflict (regno);
  883.       SET_HARD_REG_BIT (hard_regs_live, regno);
  884.       regno++;
  885.     }
  886.     }
  887. }
  888.  
  889. /* Like mark_reg_set except notice just CLOBBERs; ignore SETs.  */
  890.  
  891. static void
  892. mark_reg_clobber (reg, setter)
  893.      rtx reg, setter;
  894. {
  895.   register int regno;
  896.  
  897.   /* WORD is which word of a multi-register group is being stored.
  898.      For the case where the store is actually into a SUBREG of REG.
  899.      Except we don't use it; I believe the entire REG needs to be
  900.      made live.  */
  901.   int word = 0;
  902.  
  903.   if (GET_CODE (setter) != CLOBBER)
  904.     return;
  905.  
  906.   if (GET_CODE (reg) == SUBREG)
  907.     {
  908.       word = SUBREG_WORD (reg);
  909.       reg = SUBREG_REG (reg);
  910.     }
  911.  
  912.   if (GET_CODE (reg) != REG)
  913.     return;
  914.  
  915.   regs_set[n_regs_set++] = reg;
  916.  
  917.   regno = REGNO (reg);
  918.  
  919.   if (reg_renumber[regno] >= 0)
  920.     regno = reg_renumber[regno] /* + word */;
  921.  
  922.   /* Either this is one of the max_allocno pseudo regs not allocated,
  923.      or it is or has a hardware reg.  First handle the pseudo-regs.  */
  924.   if (regno >= FIRST_PSEUDO_REGISTER)
  925.     {
  926.       if (reg_allocno[regno] >= 0)
  927.     {
  928.       SET_ALLOCNO_LIVE (reg_allocno[regno]);
  929.       record_one_conflict (regno);
  930.     }
  931.     }
  932.   /* Handle hardware regs (and pseudos allocated to hard regs).  */
  933.   else if (! fixed_regs[regno])
  934.     {
  935.       register int last = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg));
  936.       while (regno < last)
  937.     {
  938.       record_one_conflict (regno);
  939.       SET_HARD_REG_BIT (hard_regs_live, regno);
  940.       regno++;
  941.     }
  942.     }
  943. }
  944.  
  945. /* Mark REG as being dead (following the insn being scanned now).
  946.    Store a 0 in regs_live or allocnos_live for this register.  */
  947.  
  948. static void
  949. mark_reg_death (reg)
  950.      rtx reg;
  951. {
  952.   register int regno = REGNO (reg);
  953.  
  954.   /* For pseudo reg, see if it has been assigned a hardware reg.  */
  955.   if (reg_renumber[regno] >= 0)
  956.     regno = reg_renumber[regno];
  957.  
  958.   /* Either this is one of the max_allocno pseudo regs not allocated,
  959.      or it is a hardware reg.  First handle the pseudo-regs.  */
  960.   if (regno >= FIRST_PSEUDO_REGISTER)
  961.     {
  962.       if (reg_allocno[regno] >= 0)
  963.     CLEAR_ALLOCNO_LIVE (reg_allocno[regno]);
  964.     }
  965.   /* Handle hardware regs (and pseudos allocated to hard regs).  */
  966.   else if (! fixed_regs[regno])
  967.     {
  968.       /* Pseudo regs already assigned hardware regs are treated
  969.      almost the same as explicit hardware regs.  */
  970.       register int last = regno + HARD_REGNO_NREGS (regno, GET_MODE (reg));
  971.       while (regno < last)
  972.     {
  973.       CLEAR_HARD_REG_BIT (hard_regs_live, regno);
  974.       regno++;
  975.     }
  976.     }
  977. }
  978.  
  979. /* Mark hard reg REGNO as currently live, assuming machine mode MODE
  980.    for the value stored in it.  MODE determines how many consecutive
  981.    registers are actually in use.  Do not record conflicts;
  982.    it is assumed that the caller will do that.  */
  983.  
  984. static void
  985. mark_reg_live_nc (regno, mode)
  986.      register int regno;
  987.      enum machine_mode mode;
  988. {
  989.   register int last = regno + HARD_REGNO_NREGS (regno, mode);
  990.   while (regno < last)
  991.     {
  992.       SET_HARD_REG_BIT (hard_regs_live, regno);
  993.       regno++;
  994.     }
  995. }
  996.  
  997. /* Try to set a preference for an allocno to a hard register.
  998.    We are passed DEST and SRC which are the operands of a SET.  It is known
  999.    that SRC is a register.  If SRC or the first operand of SRC is a register,
  1000.    try to set a preference.  If one of the two is a hard register and the other
  1001.    is a pseudo-register, mark the preference.
  1002.    
  1003.    Note that we are not as agressive as local-alloc in trying to tie a
  1004.    pseudo-register to a hard register.  */
  1005.  
  1006. static void
  1007. set_preference (dest, src)
  1008.      rtx dest, src;
  1009. {
  1010.   int src_regno, dest_regno;
  1011.   /* Amount to add to the hard regno for SRC, or subtract from that for DEST,
  1012.      to compensate for subregs in SRC or DEST.  */
  1013.   int offset = 0;
  1014.  
  1015.   if (GET_RTX_FORMAT (GET_CODE (src))[0] == 'e')
  1016.     src = XEXP (src, 0);
  1017.  
  1018.   /* Get the reg number for both SRC and DEST.
  1019.      If neither is a reg, give up.  */
  1020.  
  1021.   if (GET_CODE (src) == REG)
  1022.     src_regno = REGNO (src);
  1023.   else if (GET_CODE (src) == SUBREG && GET_CODE (SUBREG_REG (src)) == REG)
  1024.     {
  1025.       src_regno = REGNO (SUBREG_REG (src));
  1026.       offset += SUBREG_WORD (src);
  1027.     }
  1028.   else
  1029.     return;
  1030.  
  1031.   if (GET_CODE (dest) == REG)
  1032.     dest_regno = REGNO (dest);
  1033.   else if (GET_CODE (dest) == SUBREG && GET_CODE (SUBREG_REG (dest)) == REG)
  1034.     {
  1035.       dest_regno = REGNO (SUBREG_REG (dest));
  1036.       offset -= SUBREG_WORD (dest);
  1037.     }
  1038.   else
  1039.     return;
  1040.  
  1041.   /* Convert either or both to hard reg numbers.  */
  1042.  
  1043.   if (reg_renumber[src_regno] >= 0)
  1044.     src_regno = reg_renumber[src_regno];
  1045.  
  1046.   if (reg_renumber[dest_regno] >= 0)
  1047.     dest_regno = reg_renumber[dest_regno];
  1048.  
  1049.   /* Now if one is a hard reg and the other is a global pseudo
  1050.      then give the other a preference.  */
  1051.  
  1052.   if (dest_regno < FIRST_PSEUDO_REGISTER && src_regno >= FIRST_PSEUDO_REGISTER
  1053.       && reg_allocno[src_regno] >= 0)
  1054.     {
  1055.       dest_regno -= offset;
  1056.       if (dest_regno >= 0 && dest_regno < FIRST_PSEUDO_REGISTER)
  1057.     {
  1058.       SET_REGBIT (hard_reg_preferences,
  1059.               reg_allocno[src_regno], dest_regno);
  1060.       SET_HARD_REG_BIT (regs_someone_prefers, dest_regno);
  1061.     }
  1062.     }
  1063.  
  1064.   if (src_regno < FIRST_PSEUDO_REGISTER && dest_regno >= FIRST_PSEUDO_REGISTER
  1065.       && reg_allocno[dest_regno] >= 0)
  1066.     {
  1067.       src_regno += offset;
  1068.       if (src_regno >= 0 && src_regno < FIRST_PSEUDO_REGISTER)
  1069.     {
  1070.       SET_REGBIT (hard_reg_preferences,
  1071.               reg_allocno[dest_regno], src_regno);
  1072.       SET_HARD_REG_BIT (regs_someone_prefers, src_regno);
  1073.     }
  1074.     }
  1075. }
  1076.  
  1077. /* Print debugging trace information if -greg switch is given,
  1078.    showing the information on which the allocation decisions are based.  */
  1079.  
  1080. static void
  1081. dump_conflicts (file)
  1082.      FILE *file;
  1083. {
  1084.   register int i;
  1085.   fprintf (file, ";; %d regs to allocate:", max_allocno);
  1086.   for (i = 0; i < max_allocno; i++)
  1087.     {
  1088.       fprintf (file, " %d", allocno_reg[allocno_order[i]]);
  1089.       if (allocno_size[allocno_order[i]] != 1)
  1090.     fprintf (file, " (%d)", allocno_size[allocno_order[i]]);
  1091.     }
  1092.   fprintf (file, "\n");
  1093.  
  1094.   for (i = 0; i < max_allocno; i++)
  1095.     {
  1096.       register int j;
  1097.       fprintf (file, ";; %d conflicts:", allocno_reg[i]);
  1098.       for (j = 0; j < max_allocno; j++)
  1099.     if (CONFLICTP (i, j) || CONFLICTP (j, i))
  1100.       fprintf (file, " %d", allocno_reg[j]);
  1101.       for (j = 0; j < FIRST_PSEUDO_REGISTER; j++)
  1102.     if (TEST_HARD_REG_BIT (hard_reg_conflicts[i], j))
  1103.       fprintf (file, " %d", j);
  1104.       fprintf (file, "\n");
  1105.     }
  1106.   fprintf (file, "\n");
  1107. }
  1108.  
  1109. void
  1110. dump_global_regs (file)
  1111.      FILE *file;
  1112. {
  1113.   register int i;
  1114.  
  1115.   fprintf (file, ";; Register dispositions:");
  1116.   for (i = FIRST_PSEUDO_REGISTER; i < max_regno; i++)
  1117.     {
  1118.       if (reg_renumber[i] >= 0)
  1119.     fprintf (file, " %d in %d ", i, reg_renumber[i]);
  1120.     }
  1121.  
  1122.   fprintf (file, "\n\n;; Hard regs used: ");
  1123.   for (i = 0; i < FIRST_PSEUDO_REGISTER; i++)
  1124.     if (regs_ever_live[i])
  1125.       fprintf (file, " %d", i);
  1126.   fprintf (file, "\n\n");
  1127. }
  1128.